* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Основные цвета */
    --bg-color: #F4F4F6;
    --heading-color: #1A365D;
    --text-hover: #335B7A;

    /* Цвета текста */
    --body-1: #223129;
    --body-2: #4A5568;
    --body-3: #718096;
    --body-4: #A0AEC0;

    /* Акцентные цвета */
    --accent-color-1: #D97706;
    --accent-color-2: #FBE6C2;
    --accent-color-3: #F4D9B6;

    /* Навигация */
    --nav-bg: #1A365D;
    --nav-text: #1A365D;
    --nav-text-hover: #D97706;
    --nav-text-active: #B45309;

    /* Кнопки */
    --btn-color: #4A7AAB;
    --btn-text: #FFFFFF;
    --btn-hover: #3A6795;

    /* Дополнительные элементы */
    --icon-color: #6699CC;
    --card-bg: #FFFFFF;
    --card-stroke: #E2E8F0;

    --highlight-text: #D97706;
    --accent-1: #FBE6C2;
    --accent-2: #F4D9B6;
    --nav-text-white: #FFFFFF;

    /* Environment section colors */
    --ambiente-bg: #F9F9F9;
    --ambiente-heading: #2E8B57;
    --ambiente-circle: #E3F2E7;
    --ambiente-btn-bg: #E2F0E9;
    --ambiente-btn-border: #4D8C6F;
    --ambiente-btn-text: #4D8C6F;

    /* Lines */
    --side-lines: #B5BAB9;
    --lines: #8B938F;

    /* =================================================================
      FONT SYSTEM - Система шрифтов
   ================================================================= */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-secondary: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    /* Desktop */
    --font-size-hero: 72px;
    --font-size-h1: 64px;
    --font-size-h2: 48px;
    --font-size-h2-5: 40px;
    --font-size-h3: 32px;
    --font-size-h4: 24px;
    --font-size-h5: 20px;
    --font-size-h6: 18px;
    --font-size-lead: 20px;
    --font-size-body-large: 18px;
    --font-size-body: 16px;
    --font-size-body-small: 14px;
    --font-size-caption: 12px;
    --font-size-overline: 10px;

    /* Tablet */
    --font-size-hero-tablet: 48px;
    --font-size-h1-tablet: 40px;
    --font-size-h2-tablet: 32px;
    --font-size-h2-5-tablet: 28px;
    --font-size-h3-tablet: 24px;
    --font-size-h4-tablet: 22px;
    --font-size-h5-tablet: 18px;
    --font-size-h6-tablet: 16px;
    --font-size-lead-tablet: 18px;
    --font-size-body-large-tablet: 16px;
    --font-size-body-tablet: 15px;
    --font-size-body-small-tablet: 13px;

    /* Mobile */
    --font-size-hero-mobile: 32px;
    --font-size-h1-mobile: 28px;
    --font-size-h2-mobile: 24px;
    --font-size-h2-5-mobile: 22px;
    --font-size-h3-mobile: 20px;
    --font-size-h4-mobile: 18px;
    --font-size-h5-mobile: 16px;
    --font-size-h6-mobile: 14px;
    --font-size-lead-mobile: 16px;
    --font-size-body-large-mobile: 14px;
    --font-size-body-mobile: 14px;
    --font-size-body-small-mobile: 12px;

    --font-weight-thin: 200;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    /* Line height */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;

    /* Letter spacing */
    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: 0em;
    --letter-spacing-wide: 0.025em;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--body-1);
    line-height: var(--line-height-relaxed);
    padding: 40px 20px;
    position: relative;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
}
.macbook-image {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.side-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.line-left {
    position: absolute;
    left: 55px;
    top: 850px;
    width: 1px;
    height: 20000px;
    background-color: var(--side-lines);
}

.line-right {
    position: absolute;
    right: 55px;
    top: 850px;
    width: 1px;
    height: 20000px;
    background-color: var(--side-lines);
}

.line-left-long,
.line-right-long {
    height: 10000px;
}
.side-lines-full-document {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
@media (max-width: 1024px) {
    .line-left {
        left: 30px;
    }

    .line-right {
        right: 30px;
    }
}

@media (max-width: 768px) {

    .line-left,
    .line-right {
        display: none;
    }
}

.intro-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.intro-block {
    font-family: var(--font-primary);
    font-size: var(--font-size-h5);
    line-height: var(--line-height-normal);
    font-weight: 300;
    color: var(--body-1);
}

.content-wrapper {
    position: relative;
    z-index: 2;
}
body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--body-1);
    line-height: var(--line-height-relaxed);
    padding: 40px 20px;
    position: relative;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
}

.macbook-image {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.side-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.line-left {
    position: absolute;
    left: 55px;
    top: 850px;
    width: 1px;
    height: 6000px;
    background-color: var(--side-lines);
}

.line-right {
    position: absolute;
    right: 55px;
    top: 850px;
    width: 1px;
    height: 6000px;
    background-color: var(--side-lines);
}

.intro-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.intro-block {
    font-family: var(--font-primary);
    font-size: var(--font-size-h5);
    line-height: var(--line-height-normal);
    font-weight: 300;
    color: var(--body-1);
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    body {
        padding: 30px 15px;
    }

    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .macbook-image {
        margin-bottom: 30px;
    }

    .line-left {
        left: 30px;
        top: 650px;
        height: 2500px;
    }

    .line-right {
        right: 30px;
        top: 650px;
        height: 2500px;
    }

    .intro-text {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 30px;
    }

    .intro-block {
        font-size: var(--font-size-body-large-tablet);
        line-height: var(--line-height-relaxed);
    }

    .section-text {
        font-size: var(--font-size-body-large-tablet);
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    .container {
        padding: 0 5px;
    }

    .macbook-image {
        margin-bottom: 25px;
    }

    .line-left,
    .line-right {
        display: none;
    }

    .intro-text {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 25px;
    }

    .intro-block {
        font-size: var(--font-size-body-large-mobile);
        line-height: var(--line-height-relaxed);
        text-align: left;
    }

    .section-text {
        font-size: var(--font-size-body-large-mobile);
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px 10px;
    }

    .container {
        padding: 0;
    }

    .macbook-image {
        margin-bottom: 20px;
    }

    .intro-text {
        gap: 25px;
        margin-top: 20px;
    }

    .intro-block {
        font-size: var(--font-size-body-large-mobile);
        line-height: var(--line-height-relaxed);
    }

    .section-text {
        font-size: var(--font-size-body-large-mobile);
    }
}

@media (max-width: 360px) {
    body {
        padding: 10px 8px;
    }

    .intro-text {
        gap: 20px;
        margin-top: 15px;
    }

    .intro-block {
        font-size: var(--font-size-body-small-mobile);
    }

    .section-text {
        font-size: var(--font-size-body-small-mobile);
    }
}

/* =================================================================
CHALLENGE SOLUTION
================================================================= */
.challenge-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 120px 0;
}

.challenge-block,
.solution-block {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 40px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-light);
    color: var(--accent-color-1);
    font-style: italic;
    margin-bottom: 10px;
}

.section-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-body-large);
    line-height: var(--line-height-relaxed);
    color: var(--body-1);
    font-weight: 300;
}

@media (max-width: 1024px) {
    .challenge-solution {
        gap: 20px;
        margin: 100px 0;
    }

    .challenge-block,
    .solution-block {
        padding: 25px;
        border-radius: 30px;
    }

    .section-title {
        font-size: var(--font-size-h2-tablet);
        margin-bottom: 15px;
    }

    .section-text {
        font-size: var(--font-size-body-large-tablet);
    }
}

@media (max-width: 768px) {
    .challenge-solution {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 60px 0;
    }

    .challenge-block,
    .solution-block {
        padding: 20px;
        border-radius: 25px;
    }

    .section-title {
        font-size: var(--font-size-h2-mobile);
        margin-bottom: 12px;
    }

    .section-text {
        font-size: var(--font-size-body-large-mobile);
    }
}

@media (max-width: 480px) {
    .challenge-solution {
        gap: 20px;
        margin: 50px 0;
    }

    .challenge-block,
    .solution-block {
        padding: 18px;
        border-radius: 20px;
    }

    .section-title {
        font-size: var(--font-size-h3-mobile);
        margin-bottom: 10px;
    }

    .section-text {
        font-size: var(--font-size-body-large-mobile);
    }
}

@media (max-width: 360px) {
    .challenge-solution {
        gap: 20px;
        margin: 40px 0;
    }

    .challenge-block,
    .solution-block {
        padding: 15px;
        border-radius: 18px;
    }

    .section-title {
        font-size: var(--font-size-h4-mobile);
    }

    .section-text {
        font-size: var(--font-size-body-small-mobile);
    }
}

/* =================================================================
CURRENT STATE ANALYSIS SECTION 
================================================================= */
.current-state-analysis {
    margin: 120px 0;
    position: relative;
}

.analysis-header {
    text-align: center;
    margin-bottom: 80px;
}

.assessment-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-h1);
    font-weight: 400;
    color: var(--accent-color-1);
    font-style: italic;
    margin-bottom: 10px;
    line-height: var(--line-height-tight);
}

.assessment-description {
    width: 920px;
    font-family: var(--font-primary);
    font-size: var(--font-size-body-large);
    line-height: var(--line-height-relaxed);
    color: var(--body-1);
    font-weight: 300;
    margin: 0 auto;
}

.bento-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    column-gap: 10px;
    margin-bottom: 40px;
    min-height: 500px;
}

.bento-left {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 25px;
    border: 1px solid var(--card-stroke);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.1);
    display: flex;
    flex-direction: column;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--card-stroke);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background-color: #ff5f57;
}

.dot.yellow {
    background-color: #ffbd2e;
}

.dot.green {
    background-color: #28ca42;
}

.url-bar {
    flex: 1;
    background: var(--bg-color);
    border: 1px solid var(--card-stroke);
    border-radius: 20px;
    padding: 8px 20px;
    font-size: var(--font-size-body-small);
    color: var(--body-3);
    margin-left: 20px;
}

.current-site-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 621px;
}

.current-site-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.outdated-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(239, 68, 68, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: var(--font-size-body-small);
    font-weight: 600;
    backdrop-filter: blur(10px);
}


.site-title {
    font-size: var(--font-size-body);
    font-weight: 600;
    margin-bottom: 5px;
}

.site-date {
    font-size: var(--font-size-body-small);
    opacity: 0.8;
}

.bento-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 165px) 240px;
    column-gap: 10px;
    row-gap: 10px;
}
.bento-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 12px;
    border: 0.5px solid var(--lines);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 165px;
}

.bento-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.1);
}

.bento-card.critical {
    border-color: var(--critical-color);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.03) 0%, var(--card-bg) 100%);
}

.bento-card.warning {
    border-color: var(--warning-color);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.03) 0%, var(--card-bg) 100%);
}

.bento-card.good {
    border-color: var(--good-color);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, var(--card-bg) 100%);
}

.card-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.bento-card.critical .card-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--critical-color);
}

.bento-card.warning .card-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.bento-card.good .card-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--good-color);
}

.card-value {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.bento-card.critical .card-value {
    color: var(--critical-color);
}

.bento-card.warning .card-value {
    color: var(--warning-color);
}

.bento-card.good .card-value {
    color: var(--good-color);
}

.card-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    font-weight: 600;
    color: var(--heading-color);
    line-height: var(--line-height-tight);
    margin-bottom: 2px;
}

.card-description {
    font-size: var(--font-size-body-small);
    color: var(--body-3);
    line-height: var(--line-height-normal);
}

.seo-card {
    grid-column: span 1;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 12px;
    border: 0.5px solid var(--lines);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 165px;
}

.seo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.1);
}

.seo-card .card-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.seo-card .card-value {
    color: var(--warning-color);
}

.ux-card {
    grid-column: span 1;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 12px;
    border: 0.5px solid var(--lines);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 165px;
}

.ux-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.1);
}

.ux-card .card-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--critical-color);
}

.ux-card .card-value {
    color: var(--critical-color);
}

.info-card {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 0.5px solid var(--lines);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
    height: 240px;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.1);
}

.info-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    font-weight: 600;
    color: var(--critical-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.info-list li {
    font-size: var(--font-size-body-small);
    color: var(--body-2);
    display: flex;
    align-items: center;
    gap: 3px;
}

.info-list li:before {
    content: "•";
    color: var(--critical-color);
    font-weight: bold;
    font-size: 0.8rem;
}

.nav-content-card {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.05) 0%, rgba(156, 163, 175, 0.05) 100%);
    border: 0.5px solid var(--lines);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
    height: 235px;
}

.nav-content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(107, 114, 128, 0.1);
}

.nav-content-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    font-weight: 600;
    color: var(--body-1);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-content-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}

.nav-content-list li {
    font-size: var(--font-size-body-small);
    color: var(--body-2);
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav-content-list li:before {
    content: "•";
    color: var(--body-1);
    font-weight: bold;
    font-size: 0.8rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 40px;
    margin-top: 10px;
}

.problem-category {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px;
    border: 0.5px solid var(--lines);
    transition: all 0.3s ease;
}

.problem-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(239, 68, 68, 0.1);
    color: var(--critical-color);
}

.category-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    font-weight: 600;
    color: var(--heading-color);
}

.problems-list {
    list-style: none;
    padding: 0;
}

.problems-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.problems-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.problem-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--critical-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
}

.problem-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-body-small);
    color: var(--body-2);
    line-height: var(--line-height-normal);
}

.impact-summary {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 10px;
    height: 586px;
}

.impact-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-h3);
    font-weight: 600;
    color: var(--critical-color);
    margin-bottom: 20px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.impact-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--critical-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: var(--font-size-body-small);
    color: var(--body-2);
    font-weight: 500;
}

.impact-description {
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    color: var(--body-1);
    line-height: var(--line-height-relaxed);
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

:root {
    --critical-color: #EF4444;
    --warning-color: #F59E0B;
    --good-color: #10B981;
}
@media (max-width: 1024px) {
    .current-state-analysis {
        margin: 100px 0;
    }

    .analysis-header {
        margin-bottom: 60px;
    }

    .assessment-title {
        font-size: var(--font-size-h1-tablet);
    }

    .assessment-description {
        width: 100%;
        max-width: 700px;
        font-size: var(--font-size-body-large-tablet);
    }

    .bento-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .bento-left {
        padding: 20px;
        border-radius: 20px;
    }

    .current-site-image {
        height: 400px;
    }

    .bento-right {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 15px;
    }

    .bento-card {
        height: 140px;
        padding: 10px;
    }

    .info-card {
        grid-column: span 3;
        height: auto;
        padding: 20px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-summary {
        padding: 40px;
        height: auto;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .impact-title {
        font-size: var(--font-size-h3-tablet);
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .current-state-analysis {
        margin: 60px 0;
    }

    .analysis-header {
        margin-bottom: 40px;
    }

    .assessment-title {
        font-size: var(--font-size-h1-mobile);
        margin-bottom: 15px;
    }

    .assessment-description {
        font-size: var(--font-size-body-large-mobile);
    }

    .bento-left {
        padding: 15px;
        border-radius: 15px;
    }

    .current-site-image {
        height: 300px;
        border-radius: 15px;
    }

    .bento-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .bento-card {
        height: 120px;
        padding: 8px;
        border-radius: 8px;
    }

    .card-value {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .card-title {
        font-size: var(--font-size-body-small);
        margin-bottom: 1px;
    }

    .card-description {
        font-size: 11px;
    }

    .info-card {
        grid-column: span 2;
        padding: 15px;
        border-radius: 8px;
    }

    .info-title {
        font-size: var(--font-size-body-small);
    }

    .info-list li {
        font-size: 12px;
    }

    .problem-category {
        padding: 15px;
        border-radius: 12px;
    }

    .category-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .category-title {
        font-size: var(--font-size-body-small);
    }

    .problem-text {
        font-size: 12px;
    }

    .impact-summary {
        padding: 25px;
        border-radius: 15px;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-title {
        font-size: var(--font-size-h3-mobile);
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 12px;
    }

    .impact-description {
        font-size: var(--font-size-body-mobile);
    }
}

@media (max-width: 480px) {
    .current-state-analysis {
        margin: 50px 0;
    }

    .analysis-header {
        margin-bottom: 30px;
    }

    .assessment-title {
        font-size: var(--font-size-h2-mobile);
    }

    .assessment-description {
        font-size: var(--font-size-body-large-mobile);
    }

    .bento-left {
        padding: 12px;
    }

    .preview-header {
        gap: 10px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .url-bar {
        padding: 6px 15px;
        font-size: 11px;
        margin-left: 10px;
    }

    .current-site-image {
        height: 250px;
    }

    .outdated-overlay {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .bento-right {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .bento-card {
        height: 100px;
        padding: 6px;
    }

    .card-icon {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    .card-value {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .card-title {
        font-size: 11px;
    }

    .card-description {
        font-size: 9px;
    }

    .info-card {
        grid-column: span 1;
        padding: 12px;
        height: auto;
    }

    .info-title {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .info-list li {
        font-size: 10px;
        gap: 2px;
    }

    .problem-category {
        padding: 12px;
        border-radius: 10px;
    }

    .category-header {
        gap: 8px;
        margin-bottom: 10px;
    }

    .category-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .category-title {
        font-size: 12px;
    }

    .problems-list li {
        gap: 6px;
        margin-bottom: 8px;
        padding: 6px 0;
    }

    .problem-indicator {
        width: 14px;
        height: 14px;
        font-size: 8px;
    }

    .problem-text {
        font-size: 11px;
    }

    .impact-summary {
        padding: 20px;
    }

    .impact-title {
        font-size: var(--font-size-h4-mobile);
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 11px;
    }

    .impact-description {
        font-size: var(--font-size-body-small-mobile);
    }
}

@media (max-width: 360px) {
    .current-state-analysis {
        margin: 40px 0;
    }

    .assessment-title {
        font-size: var(--font-size-h3-mobile);
    }

    .assessment-description {
        font-size: var(--font-size-body-small-mobile);
    }

    .current-site-image {
        height: 200px;
    }

    .bento-card {
        height: 90px;
    }

    .card-value {
        font-size: 0.8rem;
    }

    .card-title {
        font-size: 10px;
    }

    .impact-summary {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.3rem;
    }
}
/* =================================================================
DESIGN SHOW SECTION1
================================================================= */
.deep-dive-header-section {
    padding: 100px 0 60px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.deep-dive-header-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.deep-dive-header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.deep-dive-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-hero);
    font-weight: 400;
    color: var(--accent-color-1);
    font-style: italic;
    margin-bottom: 10px;
    line-height: var(--line-height-tight);
    position: relative;
    opacity: 0;
}

.deep-dive-title::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: var(--accent-color-1);
    margin-left: 2px;
    opacity: 0;
    animation: blinkCursor 1s infinite;
}

.deep-dive-header-section.visible .deep-dive-title {
    opacity: 1;
}

.deep-dive-header-section.visible .deep-dive-title::after {
    opacity: 1;
}

.deep-dive-title.typing-complete::after {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.deep-dive-subtitle {
    width: 920px;
    font-family: var(--font-primary);
    font-size: var(--font-size-body-large);
    line-height: var(--line-height-relaxed);
    color: var(--body-1);
    font-weight: 300;
    margin: 0 auto;
    max-width: 100%;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.deep-dive-header-section.visible .deep-dive-subtitle {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 3.8s;
}

.deep-dive-header-container::before,
.deep-dive-header-container::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color-1), transparent);
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
    transition: all 1s ease;
}

.deep-dive-header-container::before {
    left: calc(50% - 200px);
}

.deep-dive-header-container::after {
    right: calc(50% - 200px);
}

.header-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-color-1);
    border-radius: 50%;
    opacity: 0;
    animation: headerParticleFloat 3s ease-in-out infinite;
    box-shadow: 0 0 3px var(--accent-color-1);
}

@keyframes blinkCursor {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

@keyframes headerParticleFloat {
    0% {
        opacity: 0;
        transform: translateY(0px) translateX(0px) scale(0.5);
    }

    20% {
        opacity: 0.8;
        transform: translateY(-20px) translateX(var(--drift-x, 10px)) scale(1);
    }

    80% {
        opacity: 0.8;
        transform: translateY(-40px) translateX(var(--drift-x, 10px)) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-60px) translateX(var(--drift-x, 20px)) scale(0.5);
    }
}

.deep-dive-section {
    padding: 0;
    position: relative;
    z-index: 3;
    min-height: 100vh;
    overflow: hidden;
}

@keyframes meshMove {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translate(20px, -15px) rotate(1deg);
        opacity: 0.5;
    }

    50% {
        transform: translate(-10px, 10px) rotate(-0.5deg);
        opacity: 0.8;
    }

    75% {
        transform: translate(15px, -20px) rotate(0.5deg);
        opacity: 0.6;
    }
}

.deep-dive-section.pinned {
    margin: 120px 0;
    position: relative;
}

.deep-dive-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
    position: relative;
}

.deep-dive-container.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .deep-dive-section::after {
        animation-duration: 50s;
    }
}

@media (max-width: 768px) {
    .deep-dive-section {
        background:
            radial-gradient(circle at 25% 75%, rgba(217, 119, 6, 0.04) 0%, transparent 60%),
            radial-gradient(circle at 75% 25%, rgba(251, 230, 194, 0.06) 0%, transparent 60%),
            linear-gradient(135deg, var(--bg-color) 0%, #f8fafc 100%);
    }

    .deep-dive-section::before {
        opacity: 0.8;
    }

    .deep-dive-section::after {
        opacity: 0.5;
        animation-duration: 60s;
    }
}

@media (max-width: 480px) {
    .deep-dive-section {
        background:
            radial-gradient(circle at 30% 70%, rgba(217, 119, 6, 0.03) 0%, transparent 50%),
            linear-gradient(135deg, var(--bg-color) 0%, #f8fafc 100%);
    }

    .deep-dive-section::after {
        display: none;
    }
}

.deep-dive-container {
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 40px;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
    position: relative;
}

.deep-dive-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.deep-dive-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    flex-grow: 1;
    position: relative;
}

.deep-dive-screen-container {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    animation: deepDiveFadeInLeft 1s ease 0.6s forwards;
    width: 850px;
    height: 700px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

@keyframes deepDiveFadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .deep-dive-header-section {
        padding: 80px 0 50px 0;
    }

    .deep-dive-title {
        font-size: var(--font-size-h1-tablet);
        margin-bottom: 30px;
    }

    .deep-dive-subtitle {
        font-size: var(--font-size-body-large-tablet);
        max-width: 600px;
    }

    .deep-dive-header-container::before,
    .deep-dive-header-container::after {
        width: 60px;
    }

    .deep-dive-header-container::before {
        left: calc(50% - 150px);
    }

    .deep-dive-header-container::after {
        right: calc(50% - 150px);
    }
}

@media (max-width: 768px) {
    .deep-dive-header-section {
        padding: 60px 0 40px 0;
    }

    .deep-dive-header-container {
        padding: 0 20px;
    }

    .deep-dive-title {
        font-size: var(--font-size-h1-mobile);
        margin-bottom: 25px;
    }

    .deep-dive-subtitle {
        font-size: var(--font-size-body-large-mobile);
        max-width: 100%;
    }

    .deep-dive-header-container::before,
    .deep-dive-header-container::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .deep-dive-header-section {
        padding: 50px 0 30px 0;
    }

    .deep-dive-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .deep-dive-subtitle {
        font-size: 14px;
    }
}

.deep-dive-screen-frame {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 25px;
    border: 1px solid var(--card-stroke);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.deep-dive-screen-image {
    width: 800px;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body-4);
    font-size: var(--font-size-body-large);
    font-weight: var(--font-weight-medium);
    position: relative;
    overflow: hidden;
}

.deep-dive-screen-image:empty::before {
    content: "";
    opacity: 0;
}

.deep-dive-screen-image:empty::before {
    content: "Screenshot Preview";
    opacity: 0.5;
}

.deep-dive-browser-chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--card-stroke);
    height: 45px;
    flex-shrink: 0;
}

.deep-dive-browser-dots {
    display: flex;
    gap: 8px;
}

.deep-dive-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.deep-dive-dot.red {
    background-color: #ff5f57;
}

.deep-dive-dot.yellow {
    background-color: #ffbd2e;
}

.deep-dive-dot.green {
    background-color: #28ca42;
}

.deep-dive-url-bar {
    flex: 1;
    background: var(--bg-color);
    border: 1px solid var(--card-stroke);
    border-radius: 20px;
    padding: 8px 20px;
    font-size: var(--font-size-body-small);
    color: var(--body-3);
    margin-left: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    transform: translateZ(0);
}

.deep-dive-screen-content {
    width: 800px;
    height: 583px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    opacity: 1;
    flex-shrink: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    transform: translateZ(0);
}

.deep-dive-screen-content.hidden {
    opacity: 0;
    position: absolute;
    top: 65px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    width: 800px;
    height: 600px;
    pointer-events: none;
}

.deep-dive-preview-content {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.deep-dive-preview-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nav-text-white);
    position: relative;
}

.deep-dive-preview-explore {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    width: 100%;
    height: 100%;
    color: var(--nav-text-white);
    position: relative;
}

.deep-dive-preview-services {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    width: 100%;
    height: 100%;
    color: var(--nav-text-white);
}

.deep-dive-content-info {
    max-width: 450px;
    width: 100%;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: deepDiveFadeInRight 1s ease 0.8s forwards;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: left;
}

@keyframes deepDiveFadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.deep-dive-navigation-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(30px);
    animation: deepDiveFadeInRight 1s ease 1s forwards;
}

.deep-dive-info-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
    top: 0;
}

.deep-dive-info-section.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    top: 0;
}

.deep-dive-content-title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-bold);
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: var(--line-height-tight);
}

.deep-dive-content-description {
    font-size: var(--font-size-h6);
    color: var(--body-2);
    margin-bottom: 30px;
    line-height: var(--line-height-relaxed);
}

.deep-dive-problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.deep-dive-problem-box,
.deep-dive-solution-box {
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid;
    transition: transform 0.3s ease;
}

.deep-dive-problem-box:hover,
.deep-dive-solution-box:hover {
    transform: translateY(-2px);
}

.deep-dive-problem-box {
    background: rgba(239, 68, 68, 0.05);
    border-left-color: #ef4444;
}

.deep-dive-solution-box {
    background: rgba(16, 185, 129, 0.05);
    border-left-color: #10b981;
}

.deep-dive-box-title {
    font-size: var(--font-size-body-small);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: 10px;
}

.deep-dive-problem-box .deep-dive-box-title {
    color: #ef4444;
}

.deep-dive-solution-box .deep-dive-box-title {
    color: #10b981;
}

.deep-dive-box-content {
    font-size: var(--font-size-body-small);
    color: var(--body-2);
    line-height: var(--line-height-normal);
}

.deep-dive-benefits-list {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.deep-dive-benefits-list li {
    display: flex;
    align-items: center;
    font-size: var(--font-size-body);
    color: var(--body-2);
    opacity: 0;
    transform: translateX(-20px);
    animation: deepDiveFadeInLeft 0.5s ease forwards;
}

.deep-dive-benefits-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.deep-dive-benefits-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.deep-dive-benefits-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.deep-dive-benefits-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.deep-dive-benefits-list li::before {
    content: "✓";
    color: var(--accent-color-1);
    font-weight: var(--font-weight-bold);
    margin-right: 12px;
    font-size: var(--font-size-h6);
    flex-shrink: 0;
}

.deep-dive-metrics-preview {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.deep-dive-metric-item {
    text-align: center;
    padding: 10px 10px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--card-stroke);
    flex: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.deep-dive-metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.deep-dive-metric-value {
    font-size: var(--font-size-h6);
    font-weight: var(--font-weight-bold);
    color: var(--accent-color-1);
    margin-bottom: 8px;
}

.deep-dive-metric-label {
    font-size: var(--font-size-caption);
    color: var(--body-3);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

@media (max-width: 1024px) {
    .deep-dive-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 40px;
        text-align: center;
        align-items: flex-start;
    }

    .deep-dive-navigation-tabs {
        flex-direction: row;
        justify-content: center;
        order: 3;
    }

    .deep-dive-content-info {
        order: 2;
        max-width: 100%;
        height: auto;
        justify-content: flex-start;
    }

    .deep-dive-screen-container {
        order: 1;
        height: 400px;
    }

    .deep-dive-benefits-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .deep-dive-problem-solution {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .deep-dive-metrics-preview {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .deep-dive-benefits-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .deep-dive-screen-container {
        height: 300px;
    }

    .deep-dive-showcase {
        gap: 30px;
    }
}

/* =================================================================
RESPONSIVE DESIGN 
================================================================= */
.responsive-design-showcase {
    width: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.responsive-design-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    height: 1600px;
}

.responsive-design-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-normal);
    font-style: italic;
    color: var(--accent-color-1);
    text-align: center;
    line-height: var(--line-height-tight);
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
}

.responsive-design-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.responsive-phone-left {
    position: absolute;
    top: 430px;
    left: 91px;
}

.responsive-phone-center {
    position: absolute;
    top: 750px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.responsive-phone-right {
    position: absolute;
    top: 450px;
    right: 91px;
}

.responsive-phone-image {
    width: 318px;
    height: 650px;
    position: relative;
}

.responsive-phone-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.responsive-text-top {
    position: absolute;
    top: 550px;
    left: 50%;
    transform: translateX(-50%);
    width: 224px;
}

.responsive-text-bottom {
    position: absolute;
    bottom: 300px;
    left: 20%;
    transform: translateX(-50%);
    width: 268px;
}

.responsive-text-content {
    font-family: var(--font-primary);
    font-size: var(--font-size-h5);
    font-weight: var(--font-weight-light);
    line-height: var(--line-height-relaxed);
    letter-spacing: var(--letter-spacing-normal);
    color: var(--body-1);
    margin: 0;
}

.responsive-line {
    position: absolute;
    background-color: var(--lines);
    opacity: 1;
}

.responsive-line-1 {
    width: 0.5px;
    height: 1406px;
    top: 183px;
    left: 482px;
}

.responsive-line-2 {
    width: 0.5px;
    height: 1406px;
    top: 183px;
    right: 482px;
}

.responsive-line-3 {
    width: 1440px;
    height: 0.5px;
    top: 420px;
    left: 0;
}

.responsive-line-4 {
    width: 1440px;
    height: 0.5px;
    bottom: 500px;
    left: 0;
}

/* =================================================================
DESIGN SHOW SECTION black animation
================================================================= */
.design-section {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.design-hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 580px;
    opacity: 1;
    transition: opacity 1s ease-in;
    position: relative;
    overflow: visible;
}

.design-sun {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
}

.design-semicircle {
    width: 40%;
    height: 20vw;
    background-color: var(--card-bg);
    border-radius: 2000px 2000px 0 0;
    position: absolute;
    bottom: 0;
    border: 2px solid var(--card-stroke);
}

.design-line {
    width: 100vw;
    height: 2px;
    background-color: var(--card-stroke);
}

.design-road {
    background-color: var(--card-bg);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    width: 100vw;
    height: 100vh;
    position: relative;
    bottom: 0;
    z-index: 1500;
    border-left: 2px solid var(--card-stroke);
    border-right: 2px solid var(--card-stroke);
}

.design-sitename {
    position: sticky;
    top: 4%;
    left: 50%;
    transform: translate(0%, -50%);
    font-size: 180px;
    color: var(--heading-color);
    margin: 0;
    z-index: 2000;
    font-family: var(--font-primary);
    font-weight: 900;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    height: 20vw;
}

.design-sitename.show {
    opacity: 1;
    animation: fade-in 0.5s forwards;
}

.design-sitename.relative {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    color: var(--heading-color);
    opacity: 1;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.design-part1 {
    background-color: var(--card-bg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 100vw;
    position: relative;
    padding-bottom: 2em;
    height: 100vh;
    min-height: 100vh;
    border-top: 2px solid var(--card-stroke);
}

.design-part1 .design-sitename {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    color: var(--heading-color);
    height: 20vw;
    z-index: 100;
    opacity: 1;
    visibility: visible;
}

.design-spacer {
    position: relative;
    height: 20vw;
}

.design-spacer.absolute {
    position: absolute;
    height: 0;
}

.design-big-text {
    font-size: 140px;
    font-family: var(--font-primary);
    font-style: italic;
    color: var(--heading-color);
    margin: 0;
    position: relative;
    bottom: 0;
    height: 100%;
    width: 100%;
    line-height: 0.9;
    letter-spacing: -2px;
    padding-left: 50px;
    font-weight: 500;
}

.design-big-text>p {
    margin: 0;
}

.design-big-text>p:nth-child(1) {
    margin-bottom: 0;
    margin-left: 6px;
}

.design-big-text>p:nth-child(2) {
    display: inline;
    font-family: var(--font-secondary);
    font-style: italic;
    color: var(--accent-color-1);
    font-weight: 400;
    margin-left: 397px;
}

.design-big-text>p:nth-child(3) {
    display: inline;
    font-family: var(--font-secondary);
    font-style: italic;
    color: var(--accent-color-1);
    font-weight: 400;
}

.design-fadein {
    opacity: 0;
    transform: translateY(1em);
    transition: opacity 0.5s, transform 1s;
}

.design-fadein.move-up {
    transform: translateY(0);
    opacity: 1;
}

.design-horizontal-scroller {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 5px;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
}

.design-horizontal-wrapper {
    width: 100%;
    height: calc(100vh + 210vw);
}

.design-horizontal-container {
    width: 100%;
    height: calc(100vh + 210vw);
    margin-top: 2em;
    background-color: var(--bg-color);
}

.design-row {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
}

.design-item {
    padding: 5vw;
    border: 3px solid var(--card-stroke);
    border-radius: 5vw;
    box-sizing: border-box;
    font-size: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 50vh;
    color: var(--body-1);
    font-weight: normal;
    width: 50vw;
    background-color: transparent;
    line-height: 1.3;
}

.design-item>p {
    margin: 0;
}

.design-big {
    font-size: 70px;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    color: var(--heading-color);
    font-weight: 700;
}

.design-item-link {
    border-bottom: 2px solid var(--highlight-text);
    align-self: flex-end;
    color: var(--highlight-text);
    text-decoration: none;
    font-weight: 600;
}

.design-filled {
    background-color: var(--card-bg);
    color: var(--body-1);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
}

.design-filled .design-item-link {
    border-bottom: 2px solid var(--highlight-text);
    color: var(--highlight-text);
}

.design-cards-container {
    height: 100%;
    width: 100%;
    background-color: var(--bg-color);
}

.design-cards {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 323vh;
    gap: 0;
    margin-top: 2em;
}

.design-cards-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 50%;
    gap: 0;
    position: relative;
}

.design-cards-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2vh;
    height: 100vh;
    background-color: var(--card-bg);
    padding: 2em;
    padding-left: 60px;
    border-right: 2px solid var(--card-stroke);
}

.design-cards-text>h2 {
    font-size: var(--font-size-hero);
    margin: 0;
    color: var(--heading-color);
    line-height: 1.1;
}

.design-cards-text>p {
    font-size: 28px;
    margin: 0;
    font-weight: normal;
    line-height: 1.4;
    color: var(--body-2);
}

.design-cards-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    gap: 0;
    position: relative;
    height: 100%;
    background-color: var(--bg-color);
}

.design-cards-image {
    height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    opacity: 0;
    width: 100%;
}

.design-image {
    max-width: 80%;
    max-height: 60%;
    border-radius: 20px;
}

.design-image-main {
    opacity: 1;
    z-index: 2;
}

.design-image-alt {
    position: absolute;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.design-cards-image:hover>.design-image-alt {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.design-cards-cta {
    padding: 1em 0;
    background-color: var(--highlight-text);
    color: #FFFFFF;
    bottom: 0;
    left: 0;
    box-sizing: padding-box;
    text-align: center;
    font-size: 28px;
    position: relative;
    overflow: hidden;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.design-cards-cta::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--nav-text-active);
    transition: width 0.3s ease;
    z-index: -1;
}

.design-cards-cta:hover::before {
    width: 100%;
}

.design-cards-cta:hover {
    color: #FFFFFF;
}

.design-fixed {
    position: fixed;
    opacity: 1;
    transition: opacity 0.3s ease;
    width: 50%;
}

.design-zoom-heading {
    color: var(--heading-color);
    font-size: var(--font-size-hero);
    line-height: 1.1;
    left: 60px !important;
}

.design-zoom-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: var(--bg-color);
    margin-left: 110px;
}

.design-zoom {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
}

.design-zoom-circle {
    height: 30vw;
    width: 30vw;
    border-radius: 100vw;
    background-color: var(--card-bg);
    border: 3px solid var(--card-stroke);
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-self: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.5s ease;
}

.design-zoom-circle.expanded {
    background-color: var(--card-bg) !important;
}

.design-zoom-content {
    color: var(--heading-color);
    position: absolute;
    justify-self: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    margin: 0;
    transition: color 0.5s ease;
    z-index: 10;
    line-height: 1.1;
    font-weight: 700;
}

.design-zoom-content.expanded {
    color: var(--heading-color) !important;
}

.design-zoom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
}

.design-footer-content {
    color: var(--heading-color);
    font-size: 42px;
    z-index: 5;
    margin: 0;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.2;
}

.design-footer {
    display: flex;
    flex-direction: row;
    width: 100vw;
    justify-content: space-between;
    margin-bottom: 2vw;
}

.design-link {
    overflow: hidden;
    position: relative;
    text-align: center;
    color: var(--highlight-text);
    transition: 0.3s;
    text-decoration: none;
}

.design-link-text {
    display: block;
    height: 100%;
    position: relative;
    top: 0%;
    transition: 0.3s;
}

.design-link-text::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
    color: var(--nav-text-active);
}

.design-link:hover .design-link-text {
    top: -100%;
}

.design-link a {
    text-decoration: none;
    color: inherit;
}

@media screen and (max-width: 1024px) {
    .design-sitename {
        font-size: 120px;
    }

    .design-big-text {
        font-size: 100px;
    }

    .design-item {
        font-size: 24px;
    }

    .design-big {
        font-size: 50px;
    }

    .design-cards-text>h2 {
        font-size: 60px;
    }

    .design-cards-text>p {
        font-size: 24px;
    }

    .design-cards-cta {
        font-size: 24px;
    }

    .design-zoom-heading {
        font-size: 60px;
    }

    .design-zoom-content {
        font-size: 50px;
    }

    .design-footer-content {
        font-size: 32px;
    }
}

@media screen and (max-width: 800px) {
    .design-cards {
        flex-direction: column-reverse;
        height: 230vh;
    }

    .design-cards-text {
        width: 100vw;
        height: 50vh;
    }

    .design-cards-image {
        width: 100vw;
        height: 50vh;
        display: none;
    }

    .design-image {
        max-height: 100%;
    }

    .design-cards-image-container {
        width: 100%;
    }

    .design-cards-cta {
        width: 100%;
    }

    .design-fixed {
        position: fixed;
        opacity: 1;
    }

    .design-cards-cta {
        transition: none;
    }

    .design-item {
        font-size: 20px;
    }

    .design-big {
        font-size: 40px;
    }

    .design-sitename {
        font-size: 80px;
    }

    .design-big-text {
        font-size: 60px;
    }

    .design-cards-text>h2 {
        font-size: 40px;
    }

    .design-cards-text>p {
        font-size: 18px;
    }

    .design-zoom-heading {
        font-size: 40px;
    }

    .design-zoom-content {
        font-size: 30px;
    }

    .design-footer-content {
        font-size: 24px;
    }
}

.design-hero {
    display: none;
}

.design-part1 {
    margin-top: 0;
}
